home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 December / MACPOWER-1997-12.ISO.7z / MACPOWER-1997-12.ISO / MacPowerオリジナル / Edutainment World / チャンプジム for DEMO / DIR / mitt.dir / 00110_Script_110 < prev    next >
Text File  |  1997-09-29  |  518b  |  24 lines

  1. on mouseUp
  2.   global gMODE
  3.   if gMODE = "game" then
  4.     puppetSound "buin"
  5.     waitSound 1
  6.     
  7.     global quitMODE
  8.     set quitMODE = "ON"
  9.     pause
  10.     
  11.     put the stageleft into H
  12.     put the stagetop into V
  13.     set the rect of window "RETURN" to rect(H+128,V+170,H+512,V+310)
  14.     set the modal of window "RETURN" to true
  15.     set the windowtype of window "RETURN" to 2
  16.     open window "RETURN"
  17.   else
  18.     soundINIT
  19.     puppetSound "click"
  20.     waitSound 1
  21.     go to frame "END"
  22.   end if
  23.   
  24. end